home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2001 Haziran / CHIP Haziran2001.iso / prog / share / 30 / _SETUP.1 / MiniMac.exe / 0 / RCDATA / TMISCEDITDLG / TMISCEDITDLG.txt
Text File  |  2001-03-20  |  2KB  |  108 lines

  1. object MiscEditDlg: TMiscEditDlg
  2.   Left = 247
  3.   Top = 146
  4.   ActiveControl = Memo
  5.   BorderStyle = bsDialog
  6.   Caption = 'String list editor'
  7.   ClientHeight = 278
  8.   ClientWidth = 430
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Bevel1: TBevel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 413
  22.     Height = 229
  23.     Shape = bsFrame
  24.   end
  25.   object LineCount: TLabel
  26.     Left = 12
  27.     Top = 12
  28.     Width = 169
  29.     Height = 17
  30.     AutoSize = False
  31.     Caption = '0 lines'
  32.   end
  33.   object Memo: TMemo
  34.     Left = 16
  35.     Top = 28
  36.     Width = 397
  37.     Height = 201
  38.     ScrollBars = ssBoth
  39.     TabOrder = 0
  40.     OnChange = UpdateStatus
  41.     OnKeyDown = MemoKeyDown
  42.   end
  43.   object OKBtn: TButton
  44.     Left = 187
  45.     Top = 245
  46.     Width = 75
  47.     Height = 25
  48.     Caption = 'OK'
  49.     Default = True
  50.     ModalResult = 1
  51.     TabOrder = 3
  52.   end
  53.   object CancelBtn: TButton
  54.     Left = 267
  55.     Top = 245
  56.     Width = 75
  57.     Height = 25
  58.     Cancel = True
  59.     Caption = 'Cancel'
  60.     ModalResult = 2
  61.     TabOrder = 4
  62.   end
  63.   object HelpBtn: TButton
  64.     Left = 347
  65.     Top = 245
  66.     Width = 75
  67.     Height = 25
  68.     Caption = '&Help'
  69.     TabOrder = 5
  70.     OnClick = HelpBtnClick
  71.   end
  72.   object LoadBtn: TButton
  73.     Left = 8
  74.     Top = 245
  75.     Width = 75
  76.     Height = 25
  77.     Caption = '&Load...'
  78.     TabOrder = 1
  79.     OnClick = FileOpen
  80.   end
  81.   object SaveBtn: TButton
  82.     Left = 92
  83.     Top = 245
  84.     Width = 75
  85.     Height = 25
  86.     Caption = '&Save...'
  87.     TabOrder = 2
  88.     OnClick = FileSave
  89.   end
  90.   object OpenDialog: TOpenDialog
  91.     DefaultExt = 'TXT'
  92.     Filter = 
  93.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  94.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  95.     Options = [ofHideReadOnly, ofShowHelp, ofPathMustExist, ofFileMustExist]
  96.     Title = 'Load string list'
  97.     Left = 364
  98.   end
  99.   object SaveDialog: TSaveDialog
  100.     Filter = 
  101.       'Text files (*.TXT)|*.TXT|Config files (*.SYS;*.INI)|*.SYS;*.INI|' +
  102.       'Batch files (*.BAT)|*.BAT|All files (*.*)|*.*'
  103.     Options = [ofOverwritePrompt, ofHideReadOnly, ofShowHelp, ofPathMustExist]
  104.     Title = 'Save string list'
  105.     Left = 392
  106.   end
  107. end
  108.